9ead83b39b886443f6d89f416e14a34f97a5350a,source/org/jasig/portal/channels/CChannelManager.java,CChannelManager,doAction,#,264

Before Change


        step.addDataElement(channelDef.toXML());
        // Selected categories
        // Channel registry
        step.addDataElement(ChannelRegistryManager.getChannelRegistry().getDocumentElement());
        // Selected roles
        step.addDataElement(roleSettings.toXML());
        // Channel types

After Change


        workflow.setChannelTypesSection(ctSection);

        // Selected categories
        WorkflowSection regSection = new WorkflowSection("selectCategories");
        WorkflowStep regStep = new WorkflowStep("1", "Categories");
        regStep.addDataElement(ChannelRegistryManager.getChannelRegistry().getDocumentElement());
        regStep.addDataElement(categorySettings.toXML());
        regSection.addStep(regStep);
        workflow.setCategoriesSection(regSection);

        // Selected roles